home *** CD-ROM | disk | FTP | other *** search
- #
- # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
- #
- # See the Nessus Scripts License for details
- #
-
- if(description)
- {
- script_id(10243);
- script_version ("$Revision: 1.13 $");
- script_cve_id("CVE-1999-0208");
- name["english"] = "ypupdated service";
- name["francais"] = "Service ypupdated";
- script_name(english:name["english"], francais:name["francais"]);
-
- desc["english"] = "
- The ypupdated RPC service is running. Some implementation of this daemon
- allow a remote user to execute arbitrary shell commands as root.
-
- *** No security hole regarding this program have been tested, so
- *** this might be a false positive
-
- Solution : We suggest that you disable this service.
- Risk factor : High";
-
-
- desc["francais"] = "
- Le service RPC ypupdated tourne.
- Certaines versions permettent α un
- utilisateur distant d'executer
- des commandes arbitraires en tant
- que root.
-
- * AUCUN PROBLEME DE SECURITE
- N'A ETE TESTE, DONC CETTE
- ALERTE EST PEUT ETRE
- FAUSE *
-
- Il est recommandΘ que vous dΘsactiviez
- ce service.
-
- Facteur de risque : ElevΘ";
-
-
- script_description(english:desc["english"], francais:desc["francais"]);
-
- summary["english"] = "Checks the presence of a RPC service";
- summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
- script_summary(english:summary["english"], francais:summary["francais"]);
-
- script_category(ACT_GATHER_INFO);
-
-
- script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
- francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
- family["english"] = "RPC";
- family["francais"] = "RPC";
- script_family(english:family["english"], francais:family["francais"]);
- script_dependencie("rpc_portmap.nasl");
- script_require_keys("rpc/portmap");
- exit(0);
- }
-
- #
- # The script code starts here
- #
-
- include("misc_func.inc");
-
-
- RPC_PROG = 100028;
- tcp = 0;
- port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
- if(!port){
- port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
- tcp = 1;
- }
-
- if(port)
- {
- if(tcp)security_warning(port);
- else security_warning(port, protocol:"udp");
- }
-